home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue56
/
VFI
/
Listing1.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-02-29
|
155 b
|
6 lines
procedure TBasicForm.FormKeyPress(Sender: TObject; var Key: Char);
if Key = #13 then
begin
Key:=#0;
SendMessage(Handle, WM_NEXTDLGCTL, 0, 0);
end;